home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / include / rcs / pwd.h,v < prev    next >
Text File  |  1992-07-04  |  471b  |  39 lines

  1. head    1.1;
  2. access;
  3. symbols
  4.     V125:1.1
  5.     V1:1.1;
  6. locks
  7.     gay_d:1.1;
  8. comment    @ * @;
  9.  
  10.  
  11. 1.1
  12. date    92.02.23.09.37.01;    author gay_d;    state Exp;
  13. branches;
  14. next    ;
  15.  
  16.  
  17. desc
  18. @Unix compatibility includes for Emacs
  19. @
  20.  
  21.  
  22. 1.1
  23. log
  24. @Initial revision
  25. @
  26. text
  27. @#define getpwuid(uid) ((struct passwd *)0)
  28. #define getpwnam(uid) ((struct passwd *)0)
  29. struct passwd {
  30.   char pw_name[1];
  31.   char pw_passwd[1];
  32.   short pw_uid;
  33.   short pw_gid;
  34.   char pw_gecos[1];
  35.   char pw_dir[1];
  36.   char pw_shell[1];
  37. };
  38. @
  39.